home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Genie / Projects / Pedestal / Source / Includes / PedMenuEdit.hh < prev    next >
Encoding:
Text File  |  2000-06-24  |  424 b   |  23 lines

  1. /*    ================
  2.  *    PedMenuEdit.hh
  3.  *    ================
  4.  */
  5.  
  6. #pragma once
  7.  
  8. #include "PedMenu.hh"
  9.  
  10. class PedMenuEdit : public PedMenu {
  11. public:
  12.     PedMenuEdit();
  13.     virtual void InstallCommand(PedCommand *inCmd, CmdCode inCode);
  14.     virtual void DoMenuItem(short inItem);
  15. protected:
  16.     PedCommand *mUndoCmd;
  17.     PedCommand *mCutCmd;
  18.     PedCommand *mCopyCmd;
  19.     PedCommand *mPasteCmd;
  20.     PedCommand *mClearCmd;
  21.     PedCommand *mSelectAllCmd;
  22. };
  23.